From 8c11893b71004b511ceb0e1be47f9130f1ca8320 Mon Sep 17 00:00:00 2001 From: Brian Koropoff Date: Sun, 5 Oct 2014 16:06:50 -0700 Subject: [PATCH] Remote `unused` lint It's causing tons of not-very-helpful errors that are breaking the build. --- src/cargo/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cargo/lib.rs b/src/cargo/lib.rs index f4d11bab1..87a495aff 100644 --- a/src/cargo/lib.rs +++ b/src/cargo/lib.rs @@ -3,7 +3,7 @@ #![feature(macro_rules, phase)] #![feature(default_type_params)] -#![deny(bad_style, unused)] +#![deny(bad_style)] extern crate libc; extern crate regex; -- 2.30.2